for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import React from 'react';
interface IProperties {
}
interface IState {
export default class HelloWorld extends React.Component<IProperties, IState> {
render(): React.ReactElement {
return <h3>
A new decade ... a new start ... 😉<br /><br />
Hello from <code>HelloWorld.tsx</code>!
</h3>;